<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.navigation {
	text-align:center;
	padding:5px 20px;
	margin-top:10px;
	display:block;
	width:100%;
}

.navigation ul {
	list-style: none;
	padding:0;
	margin:0;
}

.navigation li {
	display:inline-block;
	margin:0 8px;
}

.navigation li.navigation-active {
	font-weight: bold;
}

.content {
	display: grid;
	grid-template-columns:1fr 1200px 1fr;
}

.page-industry {
	grid-column-start: 2;
	grid-column-end: 3;
	color: #696969;
}

.split {
	display: grid;
	grid-column-gap: 40px;
}

.split-thirds {
	grid-template-columns: 2fr 1fr;
}

.split-half {
	grid-template-columns: 1fr 1fr;
}

.split-half-reversed {
}

.header {
	margin-top:30px;
}

.header .cta-button {
	margin:15px 0 15px 0;
	display: inline-block;
}

.header.section {
	 margin: 20px 40px 20px
}

.header h1 {
	font-size:20px;
	font-family:'Montserrat';
	color: #2980B9;
}

.about h2.section-title {
	font-family:'Montserrat';
	font-size:21px;
	text-align: center;
	margin:15px 0 30px 0;
	color: #2980B9;
}

.about .section-content {
	margin:40px auto;
}

picture img {
	border-radius:5px;
}

.page-industry a {
	text-decoration: underline;
}

.page-industry hr {
	width: 100%;
	background: url('/static/brand/mh-logo-blue.svg') no-repeat top center;
	background-size: contain;
	display: block;
	border:none;
	height: 30px;
	margin: 10px auto;
}

.page-industry hr:before,
.page-industry hr:after {
	content: '';
	display: block;
	position: absolute;
	background: #F7F9F9;
	height: 2px;
	margin-top: 15px;
}
.page-industry hr:before {
	left: 0;
	right: 50%;
	margin-right: 50px;
}
.page-industry hr:after {
	right: 0;
	left: 50%;
	margin-left: 50px;
}

.section {
	padding:20px;
}

.section.contact {
	margin-bottom:30px;
}

h1.section-title {
	font-size:28px;
	font-family:'Montserrat';
	color: #2980B9;
	text-align: center;
	margin-top:10px;
	margin-bottom:40px;
}

h2.section-title {
	font-size:20px;
	font-family:'Montserrat';
	color: #2980B9;
	text-align: center;
}

.contact h2.section-title {
	margin:10px 0 5px;
	color: #1f425d;
}

.contact .section-text {
	margin-bottom:20px;
}

.section-text {
	max-width:1100px;
}

.section-text-md {
	max-width:800px;
}

.m-auto {
	margin:auto;
}

.section-spacing .section-content {
	margin:40px 0;
}

.section-content h2 {
	text-transform: uppercase;
	font-family:'Montserrat';
	color: #1f425d;
	font-size:17px;
	margin:0 0 15px;
	font-weight: bold;
	letter-spacing:0.03em;
}

.header h2 {
	text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    color: #1f425d;
    font-size: 17px;
    margin: 0 0 15px;
    font-weight: bold;
    letter-spacing: 0.03em;
}

.full-width {
	width: 100%;
	display:block;
}

.full-width-center {
	text-align: center;
}

.full-width-center img {
	margin:auto;
	display:inline-block;
}

a.cta-button,
.cta-button{
	display: inline-block;
	background: #2980b9;
	color: #fff;
	border: 2px solid #2980b9;
	padding: 12px 20px;
	font-family: 'Montserrat', sans-serif;
	border-radius: 5px;
	transition: all 0.2s ease-out;
	text-decoration:none;
}

a.cta-button:hover,
.cta-button:hover {
	background: transparent;
	color: #2980b9;
}

a.cta-phone-number,
.cta-phone-number {
	text-align: center;
	display: block;
	font-size: 2em;
	text-decoration: none;
	color: #177DC5;
	margin-bottom: 10px;
	cursor: initial;
}

.contact form {
	max-width:620px;
	margin:auto;
	background: #F7F9F9;
	padding: 20px;
	border-radius:5px;
}

.button {
	display: inline-block;
	background: #2980b9;
	color: #fff;
	border: 2px solid #2980b9;
	padding: 12px 45px;
	font-family: 'Montserrat', sans-serif;
	border-radius: 5px;
	transition: all 0.2s ease-out;
}

.button:hover {
	background: transparent;
	color: #2980b9;
}

.status {
	width:100%;
	display:block;
	padding:8px 15px;
	margin-bottom:15px;
}

.status-error {
	border-top: 2px solid #BF3A2B;
	border-bottom: 2px solid #BF3A2B;
	background-color: #E74D3C;
	color: #fff;
}

.status-warning {
	border-top:2px solid #E77E21;
	border-bottom:2px solid #E77E21;
	background-color: #F39C0F;
	color: #fff;
}

.status-success {
	border-top:2px solid #27AF60;
	border-bottom:2px solid #27AF60;
	background-color: #2ECC70;
	color: #fff;
}

.status:empty,
.status-error:empty,
.status-warning:empty,
.status-success:empty  {
	display: none; /* hides error message in form if empty */
}

@media only screen and (max-width: 1200px) {
	.content{
		grid-template-columns:1fr 100% 1fr;
	}
	picture img{
		width:100%;
	}
	.header h1 {
		margin-top:0px;
	}
	.header.section{
		margin:0;
	}
	.split-thirds{
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (max-width: 1000px) {
	.content{
		grid-template-columns:1fr 100% 1fr;
	}
	picture img{
		width:100%;
	}
	.header h1 {
		margin-top:0px;
	}
	.header.section{
		margin:0;
	}
	.split-thirds{
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (max-width: 768px) {
	.content{
		grid-template-columns:1fr 100% 1fr;
	}
	.header h1 {
		text-align: center;
	}
	picture img{
		width:100%;
	}
	.header.section{
		margin:0;
	}
	.split-thirds, .split-half{
		grid-template-columns: 1fr;
	}
	.section-content h2{
		margin-top:15px;
	}
}</pre></body></html>